home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Graphics / GraphicsWorkshop / Source / Converters / GIF_SCRATCH / kludge.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-28  |  397 b   |  17 lines

  1. #ifndef KLUDGE
  2. #define KLUDGE
  3.  
  4. #import <objc/Object.h>
  5. #import <streams/streams.h>
  6.  
  7. typedef unsigned long pixel;
  8.  
  9. NXStream *pm_openr(char *name);
  10. void ppm_init(int argc, char *argv[]);
  11. void pm_usage(char *mes);
  12. id pm_close(NXStream *file);
  13. void pm_error(char *err);
  14. id ppm_allocarray(int width, int height);
  15. void PPM_ASSIGN(int x, int y, unsigned char r, unsigned char g, unsigned char b);
  16.  
  17. #endif